home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / mac / Sample Code / Java / SlideShow / Source Clippings / AboutDialog / AboutDialog okButton Setup / AboutDialog okButton Setup.rsrc / TEXT_256.txt < prev   
Encoding:
Text File  |  2000-06-23  |  275 b   |  10 lines

  1.         okButton = new Button();
  2.         okButton.setLabel("OK");
  3.         gbc = new GridBagConstraints();
  4.         gbc.gridx = 1;
  5.         gbc.gridy = 2;
  6.         gbc.fill = GridBagConstraints.NONE;
  7.         gbc.insets = new Insets(0,0,0,0);
  8.         ((GridBagLayout)getLayout()).setConstraints(okButton, gbc);
  9.         add(okButton);
  10.